home *** CD-ROM | disk | FTP | other *** search
/ Leonardo the Inventor / Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso / LEOWINMV / SHARED.DIR / 03096_Script_StoreMouseDownScript < prev    next >
Text File  |  1996-04-01  |  301b  |  13 lines

  1. on StoreMouseDownScript
  2.   global rememberMouseDownScript
  3.   set rememberMouseDownScript = the mouseDownScript
  4. end
  5.  
  6. on RestoreMouseDownScript
  7.   global rememberMouseDownScript
  8.   set the mouseDownScript = rememberMouseDownScript
  9. end
  10.  
  11. on ClearMouseDownScript
  12.    set the mouseDownScript = ""
  13. end